blob: 7bf50c1503ffa67e2054de13f942f9fee83180e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import { Separator } from "@/components/ui/separator"
import { type SearchParams } from "@/types/table"
import { getValidFilters } from "@/lib/data-table"
import { TagsTable } from "@/lib/tags/table/tag-table"
import { searchParamsCache } from "@/lib/vendor-document/validations"
import { getTags } from "@/lib/tags/service"
import { getVendorDocumentLists } from "@/lib/vendor-document/service"
import { DocumentListTable } from "@/lib/vendor-document/table/doc-table"
import DocumentContainer from "@/components/documents/document-container"
interface IndexPageProps {
params: {
contractId: string // Updated from 'id' to 'contractId' to match route parameter
}
searchParams: Promise<SearchParams>
}
export default async function DocumentListPage(props: IndexPageProps) {
const resolvedParams = await props.params
const contractId = resolvedParams.contractId // Updated from 'id' to 'contractId'
const idAsNumber = Number(contractId)
console.log(idAsNumber)
// 2) SearchParams 파싱 (Zod)
// - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼
const searchParams = await props.searchParams
const search = searchParamsCache.parse(searchParams)
const validFilters = getValidFilters(search.filters)
const promises = Promise.all([
getVendorDocumentLists({
...search,
filters: validFilters,
}, idAsNumber)
])
// 4) 렌더링
return (
<div className="space-y-6">
<div>
<DocumentContainer promises={promises} selectedPackageId={idAsNumber}/>
</div>
</div>
)
}
|